home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / pcq_incl3v1.lha / Utils / Specials.i < prev    next >
Encoding:
Text File  |  1994-04-15  |  622 b   |  32 lines

  1.  
  2. { Some special functions, included in the PCQ.lib since 2.0 }
  3.  
  4.  
  5. { MemXXX returns the value found at address a }
  6.  
  7. Function MemInt( a : Address ): Integer;
  8.     External;
  9.  
  10. Function MemWordInt( a : Address ): Word;
  11.     External;
  12.  
  13. Function MemByte( a : Address ): Byte;
  14.     External;
  15.  
  16.  
  17.  
  18. { XJsr causes the CPU to continue at address a }
  19. { ****   USE  WITH  EXTREMLY  CAUTION  !! **** }
  20.  
  21. Function XJsr( a : Address ): Integer;
  22.     External;
  23.  
  24.  
  25. { GetD0 returns the last value used in D0;  useful e.g. for }
  26. { getting the value returned by CloseScreen since kickstart }
  27. { V36.                                }
  28.  
  29. Function GetD0 : Integer;
  30.     External;
  31.  
  32.